home *** CD-ROM | disk | FTP | other *** search
- on JumpClearAll
- global JumpAmount, JumpList
- deleteAll(JumpList)
- set JumpList to [0]
- set JumpAmount to 0
- end
-
- on jump fr, fromFr
- global JumpAmount, JumpList
- ClrCursorS()
- WaitCursor()
- set JumpAmount to JumpAmount + 1
- addAt(JumpList, JumpAmount, fromFr)
- go(fr)
- end
-
- on JumpBack
- global JumpAmount, JumpList
- ClrCursorS()
- WaitCursor()
- set fr to getAt(JumpList, JumpAmount)
- deleteAt(JumpList, JumpAmount)
- set JumpAmount to JumpAmount - 1
- go(fr)
- end
-